home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / emulator / bsvc-1.000 / bsvc-1 / bsvc-1.0.4 / src / SimHector / loader / Makefile < prev   
Makefile  |  1995-07-26  |  714b  |  37 lines

  1. ###############################################################################
  2. # $Header:$
  3. ###############################################################################
  4. #
  5. # Makefile - Sim68000 Makefile
  6. #
  7. # Bradford W. Mott
  8. # July 3,1994
  9. #
  10. ###############################################################################
  11. # $Log:$
  12. ###############################################################################
  13.  
  14. LIBRARY = libloader.a
  15.  
  16. ## List of object files that need to be made
  17. OBJS = Loader.o
  18.  
  19. all: $(LIBRARY)
  20.  
  21. install:
  22.  
  23. $(LIBRARY): $(OBJS)
  24.     $(AR) $(AR_CREATE_FLAGS) $(LIBRARY) $(OBJS)
  25.     $(RANLIB) $(LIBRARY)
  26.  
  27. clean:
  28.     rm -f *.o $(LIBRARY)
  29.  
  30.  
  31. .SUFFIXES: .cxx .a
  32.  
  33. .cxx.o:
  34.     $(CC) $(INCLUDES) -c $(CPPFLAGS) $*.cxx
  35.  
  36.  
  37.